Select every other 2 table rows with jquery
- by Mark
I am currently using this code to add a class to every other row in my table.
$(".stripeMe tr:even").addClass("alt");
However, on another table i'd like to add a class to rows 3,4, 7,8 11,12 and so on...
Is this possible? thanks